/* * Copyright 2013 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.kie.api; import java.net.URL; import javax.xml.transform.Source; import javax.xml.transform.stream.StreamSource; import javax.xml.validation.Schema; import javax.xml.validation.SchemaFactory; import javax.xml.validation.Validator; import org.junit.Test; import org.xml.sax.SAXException; import org.xml.sax.SAXParseException; import static org.junit.Assert.*; public class KModuleXSDTest { @Test public void loadAndValidate() throws Exception { SchemaFactory factory = SchemaFactory.newInstance("http://www.w3.org/2001/XMLSchema"); URL url = getClass().getClassLoader().getResource("org/kie/api/kmodule.xsd"); assertNotNull( url ); Schema schema = null; try { schema = factory.newSchema(url ); } catch (SAXParseException ex ) { fail( "Unable to load XSD: " + ex.getMessage() + ":" + ex.getLineNumber() + ":" + ex.getColumnNumber() ); } assertNotNull( schema ); Validator validator = schema.newValidator(); Source source = new StreamSource(KModuleXSDTest.class.getResource( "kmod1.xml" ).openStream()); assertNotNull( source ); try { validator.validate(source); } catch (SAXException ex) { fail( "XML should be valid: " + ex.getMessage() ); } } }